/* контейнер и заголовки */
.container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}
.container > h1 {
  margin-bottom: 8px;
  color: #0073e6;
  font-size: 1.8rem;
  text-align: center;
  font-weight: 700;
}
.subtitle {
  text-align: center;
  margin-bottom: 24px;
  font-size: 1rem;
  color: #555;
}

/* таблица расписания */
.schedule-table {
  margin-bottom: 48px;
  overflow-x: auto;
  border-radius: 30px;
  box-shadow: 0 2px 16px rgba(0,115,230,0.07);
  background: #fff;
}
.schedule-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 600px;
  font-size: 16px;
  overflow: hidden;
}
.schedule-table thead tr {
  background: #0073e6;
}
.schedule-table th {
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  padding: 10px 14px;
  text-align: left;
  letter-spacing: 0.02em;
  border-right: 1px solid #176dc3;
}
.schedule-table th:first-child {
  border-top-left-radius: 30px;
}
.schedule-table th:last-child {
  border-top-right-radius: 30px;
  border-right: none;
}

/* тело таблицы */
.schedule-table td {
  padding: 10px 14px;
  text-align: left;
  vertical-align: top;
  color: #222;
  font-weight: 500;
  border-right: 1px solid #e4eaf1;
}
.schedule-table tbody tr {
  border-bottom: 1px solid #e4eaf1;
  transition: background 0.18s;
}
.schedule-table tbody tr:nth-child(even) {
  background: #f3f8fd;
}
.schedule-table tbody tr:hover {
  background: #eaf4fd;
}
.schedule-table td:last-child {
  border-right: none;
}
.schedule-table tr:last-child td {
  border-bottom: none;
}

/* кнопка «На главную» */
.btn-back {
  display: inline-flex;
  align-items: center;
  margin: 0 0 24px;
  padding: 10px 16px;
  background: #0073e6;
  color: #fff;
  text-decoration: none;
  border-radius: 40px;
  font-weight: 600;
  font-size: 16px;
  transition: background .2s;
}
.btn-back:hover {
  background: #005bb5;
}
.btn-arrow {
  margin-right: 8px;
  transition: transform .2s;
}
.btn-back:hover .btn-arrow {
  transform: translateX(-4px);
}

/* адаптив */
@media (max-width: 800px) {
  .schedule-table table {
    font-size: 15px;
    min-width: 480px;
  }
  .schedule-table th,
  .schedule-table td {
    padding: 8px 10px;
  }
}
